home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / misc / biology / logolife.cpt / Logo Life / •PS Preamble next >
Encoding:
Text File  |  1992-07-04  |  446 b   |  24 lines

  1. %!
  2. %% BioLogo¬ By Tim Endres.
  3. %%
  4. %%
  5. %%
  6. /forward { dup 0 rlineto 0 translate } def
  7. /back { neg dup 0 rlineto 0 translate } def
  8. /right { rotate } def
  9. /left { neg rotate } def
  10. /pendown { 0 setgray /PENUP 0 def } def
  11. /penup { 1 setgray /PENUP 1 def } def
  12. /Tsave { } def
  13. /Trestore { } def
  14. /pushmark { } def
  15. /popmark { } def
  16. /dot { } def
  17. /ispendown { 1 PENUP ne } def
  18. /ispenup { 1 PENUP eq } def
  19.  
  20. %
  21. % The following function is the logo expression!!
  22. %
  23.  
  24.